<style>
* {box-sizing: border-box}
.CasinoGamesSlides {display: none}
img {vertical-align: middle;}

/* INDEX BANNER */

.casino-games-bnr-container {
    width: 100%;
    max-width: 512px;
    height: auto;              /* still auto */
    min-height: 1px;           /* prevents collapse */
    margin: auto;
    position: relative;
    overflow: hidden;
}

#casino-games-bnr-Img {
	/* border-radius: 5px; */
	width: 100%
}

#CasinoGamesSlideslink {
	text-decoration: none;
}

/* Next & previous buttons */
.prev, .next {
	cursor: pointer;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: auto;
	padding: 16px;
	margin-top: 0px;
	color: #e3e3e3;
	font-weight: bold;
	font-size: 18px;
	transition: 0.3s ease;
	border-radius: 0 3px 3px 0;
	user-select: none;
	text-decoration: none;
}

a .prev, .next {
	cursor: pointer;
	text-decoration: none;
}

/* Position the "next button" to the right */
.next {
	right: 0;
	border-radius: 3px 0 0 3px;
}

/* On hover, add a black background color with a little bit see-through */
/*.prev:hover, .next:hover {
	background-color: rgba(0,0,0,0.4);
	text-decoration: none;
} */


/* Caption text */
.casino-games-slide-text {
	color: #e3e3e3;
	font-size: 16px;
	font-weight: bold;
	padding: 16px 12px;
	position: absolute;
	bottom: 0px;
	width: 100%;
	text-align: center;
	background-image: linear-gradient(to bottom, rgba(0,0,0,0), rgba(0,0,0,8));
}

/* The dots/bullets/indicators */
.casino-games-bnr-dot {
	cursor: pointer;
	height: 3px;
	width: 20px;
	margin: 0 2px;
	background-color: #bbb;
	border-radius: 10%;
	display: inline-block;
	transition: background-color 0.6s ease;
    border-radius: 6px;
}

/* Active dot */
.casino-games-bnr-dot.active, .casino-games-bnr-dot:hover {
	background-color: #333;
    border-radius: 6px;
}

/* Position the dots at the bottom center */
.casino-games-bnr-dot-container {
	position: absolute;
	bottom: 3px;
	left: 50%;
	transform: translateX(-50%);
	z-index: 5;
}

/* Fading animation */
.casino-games-slide-fade {
	animation-name: fade;
	animation-duration: 1.5s;
}

@keyframes home-slide-fade {
	from {opacity: .4} 
	to {opacity: 1}
}

/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
	.prev, .next,.casino-games-slide-text {font-size: 11px}
}

/* Desktop peek effect */
@media (min-width: 513px) {

  .casino-games-bnr-container {
    max-width: 1000px;
    height: 215px;
    position: relative;
    overflow: hidden;
    margin: auto;
  }

  .CasinoGamesSlides {
    position: absolute;
    top: 5px;
    width: 60%;
	height: auto;
    left: 50%;
    transform: translateX(-50%) scale(0.8);
    opacity: 0;
    transition: transform 0.45s ease, opacity 0.45s ease;
    cursor: pointer;
  }

  /* ACTIVE (CENTER) */
  .CasinoGamesSlides.active-slide {
    transform: translateX(-50%) scale(1);
    opacity: 1;
    z-index: 3;
    cursor: default;
  }

  /* LEFT */
  .CasinoGamesSlides.prev-slide {
    transform: translateX(-110%) scale(0.85);
    opacity: 1;
    z-index: 2;
  }

  /* RIGHT */
  .CasinoGamesSlides.next-slide {
    transform: translateX(10%) scale(0.85);
    opacity: 1;
    z-index: 2;
  }

  /* OVERLAY FOR SIDE SLIDES */
  .CasinoGamesSlides.prev-slide::after,
  .CasinoGamesSlides.next-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
    border-radius: 6px;
    pointer-events: none;
  }

  #casino-games-bnr-Img {
    width: 100%;
  }

}

</style>